home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_3.adf / Compiler_headers / Include / stddef.h < prev    next >
C/C++ Source or Header  |  1992-07-30  |  398b  |  29 lines

  1. /* Copyright (c) 1992 SAS Institute, Inc., Cary, NC USA */
  2. /* All Rights Reserved */
  3.  
  4.  
  5. #ifndef _STDDEFH
  6. #define _STDDEFH 1
  7.  
  8. #ifndef _SIZE_T
  9. #define _SIZE_T 1
  10. typedef unsigned int size_t;
  11. #endif
  12.  
  13. typedef long int ptrdiff_t;
  14.  
  15. #ifndef _WCHAR_T
  16. #define _WCHAR_T 1
  17. typedef char wchar_t;
  18. #endif
  19.  
  20. #define offsetof(type,memb)  (size_t) &(((type *) 0L)->memb)
  21.  
  22. #ifndef NULL
  23. #define    NULL    0L
  24. #endif
  25.  
  26.  
  27. #endif
  28.  
  29.